home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 592b.lha / TermII / English / ARexx Examples / test_delay.rexx < prev    next >
OS/2 REXX Batch file  |  1991-12-22  |  437b  |  13 lines

  1. /* test_delay.rexx                                                  */
  2. /*                                                                  */
  3. /*     Test rexx_delay                                              */
  4. /*                                                                  */
  5.  
  6. address TERM
  7.  
  8.  say 'I am a 20 seconds delay'
  9.  'rexx_delay' 20
  10.  say 'I am now opening the XPR dialog box'
  11.  'xpr'
  12.  say 'Yes the Rexx program is finished'
  13.